feat: upgrade sqlx to 0.9 and split runtime/TLS features - #111
Merged
Conversation
- Bump `sqlx` version to 0.9 in `Cargo.toml`. - Refactor feature aliases for TLS and runtime in `Cargo.toml`. - Update README to reflect new feature aliases for `runtime-tokio` and `tls`. - Remove dotenv usage in `adapter.rs` and streamline database URL handling. - Enhance test cases to utilize a unified method for database URL retrieval.
hsluoyz
pushed a commit
that referenced
this pull request
Aug 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sqlxfrom 0.8 to 0.9 and refresh offline query metadata.runtime-tokio/runtime-async-std,tls-native-tls/tls-rustls), keeping the old combined feature names as aliases..envinsideSqlxAdapter::new; tests now readDATABASE_URL(with defaults) and cover shared-pool reload on PostgreSQL.Test plan
cargo check --no-default-features --features postgres,runtime-tokio,tls-native-tlscargo check --no-default-features --features postgres,runtime-tokio-native-tls(legacy alias)cargo test --no-default-features --features postgres,runtime-tokio-native-tlscargo test --no-default-features --features postgres,runtime-async-std-rustlsFix: #112